home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 June: Reference Library / Dev.CD Jun 96 RL / Dev.CD Jun 96 RL.toast / What's New? / Development Kits / Apple Game Sprockets DR1 / Examples / SoundSprocketTest / TS3TestAPI.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-24  |  869 b   |  44 lines  |  [TEXT/CWIE]

  1. /*
  2.  *    File:        TS3TestAPI.c
  3.  *    Author:        Dan Venolia
  4.  *
  5.  *    Copyright © 1996 Apple Computer, Inc.
  6.  */
  7.  
  8. #include "TS3TestAPI.h"
  9.  
  10.  
  11. /* =============================================================================
  12.  *        TestAPI_Init (external)
  13.  *
  14.  *    Initializes our thing.
  15.  * ========================================================================== */
  16. void TestAPI_Init(
  17.     void)
  18. {
  19. }
  20.  
  21.  
  22. /* =============================================================================
  23.  *        TestAPI_Exit (external)
  24.  *
  25.  *    Cleans up.
  26.  * ========================================================================== */
  27. void TestAPI_Exit(
  28.     void)
  29. {
  30. }
  31.  
  32.  
  33. /* =============================================================================
  34.  *        TestAPI_Execute (external)
  35.  *
  36.  *    Runs the API tests.
  37.  * ========================================================================== */
  38. void TestAPI_Execute(
  39.     void)
  40. {
  41. }
  42.  
  43.  
  44.